﻿
body {
    overflow-x: hidden;
}

h3 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 1em;
}

.container {
    text-align: center;
    color: var(--color);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../img/montessori lab/Montessori Lab.png');
    background-size: cover;
    background-position: center;
    /*  this is where the magic happens:  */
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .container {
        background-image: url('../img/montessori lab/Montessori Labm.png');
    }
}

    .layer {
        position: relative;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
    }

        .layer img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

    .blanka {
        width: 100%;
        min-height: 60vh;
        /*background-image: url(../img/playzone/bg.png);*/
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #ffd8a0;
    }

        .blanka p {
            font-family: 'Rancho', sans-serif;
            font-size: 25px;
            color: #fbeac1;
        }

        .blanka h3 {
            font-family: 'Rancho', cursive;
            font-size: 50px;
            margin: 60px 100px;
            color: #520d0d;
        }

        .blanka img {
            position: sticky;
            z-index: 99;
            width: 50%;
            top: 2px;
        }

    .desktop-image {
        display: block;
    }

    .mobile-image {
        display: none;
    }

    .back-to-top {
        width: 5%;
        position: fixed;
        left: 1%;
        z-index: 99;
    }
